home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Context Menu Send To 1.xpl < prev    next >
Text File  |  2001-11-27  |  1KB  |  40 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Files&Folders\ANY file"
  5. "NAME"="'Send To' menu"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Enable 'Send To' menu"
  8. "DESCRIPTION 1"="When you right-click any file in Windows, a submenu called 'Send To' will appear, which contains useful shortcuts to programs and folders."
  9. "DESCRIPTION 2"="You can, however, disable the Send To menu, by clearing the box. Putting a tick in the box will restore it."
  10. "COMMENT 1"="This plug-in is dedicated to the great guys at the Lockergnome Newsgroups."
  11. "VERSION"="1.03"
  12. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "CONTACTURL"="http://www.xteq.com/"
  15.  
  16. sP="HKEY_CLASSES_ROOT\AllFileSystemObjects\shellex\ContextMenuHandlers"
  17. s1="\Send To\@"
  18. sV="{7BA4C740-9E81-11CF-99D3-00AA004AE837}"
  19.  
  20. SUB Plugin_Initialize
  21.  s=RegReadValue(sP&s1)
  22.  if s=sV then
  23.   Call SetUIElement(1,true)
  24.  end if
  25. END SUB
  26.  
  27. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  s=GetUIElement(1)
  29.  if s=true then
  30.   Call RegWriteValue(sP&s1,sV,1)
  31.  else
  32.   t=RegReadValue(sP&s1)
  33.   if t=sV then
  34.    Call RegDeleteValue(sP&s1)
  35.   end if
  36.  end if
  37. END SUB
  38.  
  39. SUB Plugin_Terminate
  40. END SUB